* {
    margin: 5px;
    padding: 10xp;
    box-sizing: border-box;
  }
  body {
    background-color: rgb(6, 124, 124);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;
    color: rgb(2, 71, 71);
    
  }
  #grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px, 1fr));
    gap: 10px;
    place-items: center;
  }
  .grid-item{
    background-color: rgb(4, 165, 165);
    padding: 10px;
    text-align: center;
    box-shadow: 10px 10px 15px rgb(2, 71, 71);
  }
  .grid-item img {
    width: 100%;
    object-fit: cover;
  }
  html {
    scroll-behavior: smooth;
  }
  nav ul li {
    display: inline-block;
    margin-right: 5px;
    padding: 5px;
  }
  nav ul li a{
    color: rgb(2, 71, 71);
    text-decoration: none;
    text-transform:uppercase;
    font-weight: bold;
    border-radius: 10px;
    background-color: rgb(4, 165, 165);
    padding: 5px;
    display: block;
  }
  nav ul li a:hover {
    color: rgb(4, 165, 165);
    background-color: rgb(2, 71, 71);
    top: 3px;
    position: relative;
    rotate: 3deg; 
  }
  h1 {
    margin: 10px 0px 40px 0px;
  }
  